home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / dcom / modems-part1 / 4228 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  3.5 KB

  1. Path: dial09.globalvillag.com!user
  2. From: nickc@globalvillag.com (Nick Chinn)
  3. Newsgroups: pitt.mac-users,comp.dcom.modems
  4. Subject: Re: Global Village Teleport Gold and InterSLIP
  5. Date: 5 Feb 1996 20:50:09 GMT
  6. Organization: Global Village Communication, Inc.
  7. Message-ID: <nickc-0502961255130001@dial09.globalvillag.com>
  8. References: <cmcst42+-0302962016020001@ehdup-h-12.rmt.net.pitt.edu>
  9. NNTP-Posting-Host: dial02.globalvillag.com
  10. X-Newsreader: Yet Another NewsWatcher 2.0b30
  11.  
  12. In article <cmcst42+-0302962016020001@ehdup-h-12.rmt.net.pitt.edu>,
  13. cmcst42+@pitt.edu (Chris Connors) wrote:
  14.  
  15. > With v 2.08b, if the v.42bis setting was checked in the Teleport Control
  16. > Panel, and the Init Modem checkbox was checked, the modem would connect to
  17. > the Pitt Modem pool and show a check next to v.42bis in the staus menu.
  18. > This, I assumed, meant the modem was connected and v.42bis compression was
  19. > activated.
  20. > Since I upgraded to 2.5.5, this is no longer the case. Even though the
  21. > Control Panel stting is the same, the staus menu no longer shows v.42bis
  22. > as active, and transfer times are quite a bit slower.
  23. > What I would like to do is modify this script so that v.42bis compression
  24. > is enabled.
  25.  
  26. You should be aware that as soon as another telecom program sends AT
  27. commands to the modem, anything you selected in the control panel will be
  28. overwritten. Just about all telecom programs do this automatically.
  29.  
  30. > Can anyone help? Please post responses to me as e-mail at
  31. > cmcst42@pitt.edu. Thanks.
  32.  
  33. OK. Here's how I'd set up the script. Note I've commented the new commands:
  34.  
  35. ___________start of new script segment___________________________________
  36. ! First recall the factory configuration
  37. ! Label 5 init string configured specifically for original TelePort Gold
  38. !  on 2/5/96 - nac
  39. !
  40. settries 0
  41. matchclr
  42. @LABEL 1
  43. matchstr 1 3 "OK\13\10"
  44. write "AT&F1\13"
  45. matchread 30
  46. inctries
  47. iftries 2 59
  48. jump 1
  49. !
  50. ! &f1  - recall factory settings
  51. ! \q2  - Use Unidirectional RTS/CTS flow control
  52. ! \q3  - Use Bidirectional RTS/CTS flow control
  53. ! \k0  - Enter command state but do not send break
  54. ! \j0  - Disable port rate adjust
  55. ! S0=0 - Don't answer calls
  56. ! E0   - Turn command echo off
  57. ! \n0  - disable all error correction and compression 
  58. ! %c0  - turn off MNP5 compression
  59. ! "H3  - enable V.42bis compression
  60. ! \n3  - enable auto-reliable V.42 error correction
  61. ! &k3  - enable hardware flow control
  62. !
  63. @LABEL 3
  64. Flush
  65. pause 10
  66. HSReset 0 1 0 0 0 0
  67. settries 0
  68. matchclr
  69. @LABEL 5
  70. matchstr 1 6 "OK\13\10"
  71. ! &F1 - recall factory settings
  72. ! &D3 - Reset Modem on On-to-Off DTR transitions
  73. ! \J0 - Disable auto port rate adjust
  74. ! W2  - Connect result code reports modem speed
  75. ! \Q2 - Unidirectional flow control
  76. ! S7=60 - To allow for an international call
  77. ! S0=0 - Don't answer calls
  78. ! E0   - Turn command echo off
  79. ! \N0 - Enter normal mode (no reliability protocols)
  80.  
  81. write "AT&F1&K3\\J0W2\\Q3S7=60S0=0E0\\N3%C0"H3\13"
  82.  
  83. matchread 50
  84. inctries
  85. iftries 2 59
  86. jump 5
  87. !
  88.  
  89. ___________end of new script segment___________________________________
  90.  
  91.  
  92. As I'm at home and I don't have the ability to test this and guarantee its
  93. effectiveness, please yell at me if it doesn't work  ;-)
  94.  
  95. -- Nick
  96.  
  97. =====================================================================
  98.  Nick Chinn          Global Village Communication, Inc.
  99.  QA Engineer         Sunnyvale, CA USA
  100. ---------------------------------------------------------------------
  101. FOR TECH SUPPORT e-mail techsupp@globalvillage.com, and not me please
  102. ---------------------------------------------------------------------
  103. Opinions and suggestions are not necessarily those of my employer!
  104.